home *** CD-ROM | disk | FTP | other *** search
- /*
- File: CRMSerialDevices.h
-
- Copyright: © 1983-1993 by Apple Computer, Inc.
- All rights reserved.
-
- Version: System 7.1 for ETO #11
- Created: Tuesday, March 30, 1993 18:00
-
- */
-
- #ifndef __CRMSERIALDEVICES__
- #define __CRMSERIALDEVICES__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
- enum {
-
-
- /* for the crmDeviceType field of the CRMRec data structure */
- crmSerialDevice = 1,
-
-
- /* version of the CRMSerialRecord below */
- curCRMSerRecVers = 1
- };
-
- /* Maintains compatibility w/ apps & tools that expect an old style icon */
- struct CRMIconRecord {
- long oldIcon[32]; /* ICN# */
- long oldMask[32];
- Handle theSuite; /* Handle to an IconSuite */
- long reserved;
- };
-
- typedef struct CRMIconRecord CRMIconRecord;
- typedef CRMIconRecord *CRMIconPtr, **CRMIconHandle;
-
- struct CRMSerialRecord {
- short version;
- StringHandle inputDriverName;
- StringHandle outputDriverName;
- StringHandle name;
- CRMIconHandle deviceIcon;
- long ratedSpeed;
- long maxSpeed;
- long reserved;
- };
-
- typedef struct CRMSerialRecord CRMSerialRecord;
- typedef CRMSerialRecord *CRMSerialPtr;
-
-
-
- #endif
-